Giter Club home page Giter Club logo

ud120-projects's People

Contributors

13rac1 avatar aaditkamat avatar abhiojha8 avatar adarsh0806 avatar adyates avatar carlward avatar cbuckey-uda avatar cmmalone avatar gageames avatar georgereuben avatar isiddharth20 avatar jared-weed avatar jaycode avatar jzebra avatar magedmohamedturk avatar nmb10 avatar poseidon-sv avatar projjol avatar ronny-udacity avatar sameeramin avatar shengkungyi avatar sudkul avatar tairiudacity avatar uanjali avatar webintellectual avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ud120-projects's Issues

Update readme.md file

Project Title

One Paragraph of project description goes here

Getting Started

These instructions will get you a copy of the project up and run on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

Prerequisites

What things you need to install the software and how to install them

Give examples

Installing

A step by step series of examples that tell you to have to get a development end running

Say what the step will be

Give the example

And repeat

until finished

End with an example of getting some data out of the system or using it for a little demo

Running the tests

Explain how to run the automated tests for this system

Break down into end to end tests

Explain what these tests test and why

Give an example

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • Hat tip to anyone who's code was used
  • Inspiration
  • etc

And also you can add contribute.md file which is written in markdown language.

Contributing to the project

Please take a moment to review this document in order to make the contribution
process easy and effective for everyone involved.

Following these guidelines helps to communicate that you respect the time of
the developers managing and developing this open source project. In return,
they should reciprocate that respect in addressing your issue, assessing
changes, and helping you finalize your pull requests.

As for everything else in the project, the contributions to this project are governed by our team.

Bug reports

A bug is a demonstrable problem that is caused by the code in the repository.
Good bug reports are extremely helpful - thank you!

Guidelines for bug reports:

  1. Use the GitHub issue search — check if the issue has already been
    reported.

  2. Check if the issue has been fixed — try to reproduce it using the
    latest master or next branch in the repository.

  3. Isolate the problem — ideally, create a reduced test case.

A good bug report shouldn't leave others needing to chase you up for more
information. Please try to be as detailed as possible in your report. What is
your environment? What steps will reproduce the issue? What OS experiences the
problem? What would you expect to be the outcome? All these details will help
people to fix any potential bugs.

Example:

Short and descriptive example bug report title

A summary of the issue and the browser/OS environment in which it occurs. If
suitable, include the steps required to reproduce the bug.

  1. This is the first step
  2. This is the second step
  3. Further steps, etc.

<url> - a link to the reduced test case

Any other information you want to share that is relevant to the issue being
reported. This might include the lines of code that you have identified as
causing the bug, and potential solutions (and your opinions on their
merits).

Feature requests

Feature requests are welcome. But take a moment to find out whether your idea
fits with the scope and aims of the project. It's up to you to make a strong
case to convince the project's developers of the merits of this feature. Please
provide as much detail and context as possible.

Pull requests

Good pull requests - patches, improvements, new features - are a fantastic
help. They should remain focused in scope and avoid containing unrelated
commits.

Please ask first before embarking on any significant pull request (e.g.
implementing features, refactoring code), otherwise you risk spending a lot of
time working on something that the project's developers might not want to merge
into the project.

For new Contributors

If you never created a pull request before, welcome: tada: : smile: Here is a great tutorial
on how to send one :)

  1. Fork the project, clone your fork,
    and configure the remotes:

    # Clone your fork of the repo into the current directory
    git clone https://github.com/<your-username>/<repo-name>
    # Navigate to the newly cloned directory
    cd <repo-name>
    # Assign the original repo to a remote called "upstream"
    git remote add upstream https://github.com/this projecthq/<repo-name>
  2. If you cloned a while ago, get the latest changes from upstream:

    git checkout master
    git pull upstream master
  3. Create a new topic branch (off the main project development branch) to
    contain your feature, change, or fix:

    git checkout -b <topic-branch-name>
  4. Make sure to update, or add to the tests when appropriate. Patches and
    features will not be accepted without tests. Run npm test to check that all
    tests pass after you've made changes. Look for a Testing section in the
    project’s README for more information.

  5. If you added or changed a feature, make sure to document it accordingly in
    the README.md file.

  6. Push your topic branch up to your fork:

    git push origin <topic-branch-name>
  7. Open a Pull Request
    with a clear title and description.

For Members of the this project Contributors Team

  1. Clone the repo and create a branch

    git clone https://github.com/this projecthq/<repo-name>
    cd <repo-name>
    git checkout -b <topic-branch-name>
  2. Make sure to update, or add to the tests when appropriate. Patches and
    features will not be accepted without tests. Run npm test to check that all tests
    pass after you've made changes. Look for a Testing section in
    the project’s README for more information.

  3. If you added or changed a feature, make sure to document it accordingly in
    the README.md file.

  4. Push your topic branch up to our repo

    git push origin <topic-branch-name>
  5. Open a Pull Request using your branch with a clear title and description.

Optionally, you can help us with these things. But don’t worry if they are too
complicated, we can help you out and teach you as we go :)

  1. Update your branch to the latest changes in the upstream master branch. You
    can do that locally with

    git pull --rebase upstream master

    Afterward, force push your changes to your remote feature branch.

  2. Once a pull request is good to go, you can tidy up your commit messages using
    Git's interactive rebase.
    Please follow our commit message conventions shown below, as they are used by
    semantic-release to automatically
    determine the new version and release to npm. In a nutshell:

Issues

Issue open :
It is not just fun.If there is really the bug or issue or suggestion the create an issue or make a pull request.

Relative Paths Are Broken

I've been getting in import error when trying to import preprocess and it's stopping me from moving forward with the Naive Bayes mini project. I hardcoded it and got the following error message

Traceback (most recent call last):                  
  File "naive_bayes/nb_author_id.py", line 22, in <module>                                               
    features_train, features_test, labels_train, labels_test = preprocess()                              
  File "/home/caldwellysr/Documents/Udacity/MachineLearning/ud120-projects/tools/email_preprocess.py", line 32, in preprocess                                                                                      
    authors_file_handler = open(authors_file, "r")  
IOError: [Errno 2] No such file or directory: '../tools/email_authors.pkl'

outlier_cleaner.py

While writing the code for "OutlierCleaner " function , one should assume that , inputs to the function are
multidimensional numpy array.

Import Error No module named sklearn

i initially got this message using naive bayes along with a host of other python 3 problems after fixing the python 3 problems and reinstalling skleran using pip the code worked fine; then i used the svm code to access email processes and i have begun to get the same error i made a virtual env and installed skleran in that but i still get the same error.

the work around i found was to delete the line of code #!/usr/bin/python or to add another # and make it into a comment, that's how it worked in my naive bayes i had added another # and commented it out, or use the code #!/usr/bin/python3.
because #!/usr/bin/python defaults to python 2 and i had installed sklearn for python 3

ImportError: No module named email_preprocess

%run "/home/abhiteshd/Documents/Abhitesh _docs/Abhitesh/BITS/Semester-4 (June 2016)/udacity/projects/naive_bayes/nb_author_id.py"

ImportError Traceback (most recent call last)
/home/abhiteshd/Documents/Abhitesh _docs/Abhitesh/BITS/Semester-4 (June 2016)/udacity/projects/naive_bayes/nb_author_id.py in ()
14 from time import time
15 sys.path.append("../tools/")
---> 16 from email_preprocess import preprocess
17
18

ImportError: No module named email_preprocess

Editor used: Canopy
OS: Ubuntu

Please help. Thanks :)

Command "python setup.py egg_info" fails with error code 1 while trying to install class_vis.py

I am trying to install class_vis.py on Mac OS Sierra Python3.6.1 by "sudo -H pip install git+https://github.com/udacity/ud120-projects.git#egg=class_vis.py".

This is what I get:

Collecting class_vis.py from git+https://github.com/udacity/ud120-projects.git#egg=class_vis.py
Cloning https://github.com/udacity/ud120-projects.git to /private/tmp/pip-build-Wmqo1s/class-vis.py
Complete output from command python setup.py egg_info:
Traceback (most recent call last):
File "", line 1, in
IOError: [Errno 2] No such file or directory: '/private/tmp/pip-build-Wmqo1s/class-vis.py/setup.py'

----------------------------------------

Command "python setup.py egg_info" failed with error code 1 in /private/tmp/pip-build-Wmqo1s/class-vis.py/

I tried updating pip and installing supertools but neither worked. Any help would be appreciated.

Bad import in pca/eigenfaces.py

The import

import pylab as pl

should be changed to

import matplotlib.pyplot as pl

in order to work with the latest versions of libraries.

Data in final dataset is not correct

There is bad data in final dataset pickle. Some of the records do not match data in enron61702insiderpay.pdf. For example see the record for BELFER ROBERT in pdf:

https://www.dropbox.com/s/423oieglmhpmhxd/Screenshot%202016-03-08%2021.36.43.png?dl=0

And in dataset:

import pickle
from pprint import pprint
with open("final_project_dataset.pkl", "r") as data_file:
    data_dict = pickle.load(data_file)

pprint(data_dict['BELFER ROBERT'])
# OUT: {'bonus': 'NaN',
# OUT:  'deferral_payments': -102500,
# OUT:  'deferred_income': 'NaN',
# OUT:  'director_fees': 3285,
# OUT:  'email_address': 'NaN',
# OUT:  'exercised_stock_options': 3285,
# OUT:  'expenses': 'NaN',
# OUT:  'from_messages': 'NaN',
# OUT:  'from_poi_to_this_person': 'NaN',
# OUT:  'from_this_person_to_poi': 'NaN',
# OUT:  'loan_advances': 'NaN',
# OUT:  'long_term_incentive': 'NaN',
# OUT:  'other': 'NaN',
# OUT:  'poi': False,
# OUT:  'restricted_stock': 'NaN',
# OUT:  'restricted_stock_deferred': 44093,
# OUT:  'salary': 'NaN',
# OUT:  'shared_receipt_with_poi': 'NaN',
# OUT:  'to_messages': 'NaN',
# OUT:  'total_payments': 102500,
# OUT:  'total_stock_value': -44093}

Comparing numbers:

field pdf dataset
deferred income -102500 NaN
deferral payments - -102500
expenses 3285 NaN
exercised stock options - 3285
restricted stock 44093 NaN
restricted stock deferred -44093 44093
total stock value - -44093

Can't download dataset

I can't download the dataset. Here is the output from the console:

/System/Library/Frameworks/Python.framework/Versions/2.7/bin/python2.7 /Users/iamtodor/machine-learning/projects/ud120-projects/tools/startup.py

checking for nltk
you should install nltk before continuing
checking for numpy
checking for scipy
checking for sklearn
you should install sklearn before continuing

downloading the Enron dataset (this may take a while)
to check on progress, you can cd up one level, then execute <ls -lthr>
Enron dataset should be last item on the list, along with its current size
download will complete at about 423 MB

And it's nothing moves. Here are no any updates. It freezes.
Could you please help me?

module 'urllib' has no attribute 'urlretrieve'

Hi,

When i am trying to run startup.py script under tools folder, it is throwing below exception.

Exception: module 'urllib' has no attribute 'urlretrieve'

I am using Python 3.6 version with Anaconda. Also when i am trying to install urllib, it is saying no module called urllib.

The script working fine when i change like below.

import urllib.request
urllib.request.urlretrieve(url, filename="../enron_mail_20150507.tgz")

Thanks

x-y swap in scatter plot in choose_your_own/class_vis.py

Hi
this line -- plt.scatter(grade_sig, bumpy_sig, color = "b", label="fast") should actually be plt.scatter(bumpy_sig, grade_sig, color = "b", label="fast")
Similarly next line too. Basically x and y values need swap.
That's because xlabel is bumpiness and ylabel is grade.
This isn't visible to the eye in the plot because of the similarity of the two features (and they are random).
Similar in your_algorithm too.

Vikram.

ImportError: No module named numpy

(Lesson1-MINI PROJECT)
On running this command python nb_author_id.py from naive_bayes folder

Got this error

Traceback (most recent call last):
File "nb_author_id.py", line 16, in
from email_preprocess import preprocess
File "../tools/email_preprocess.py", line 5, in
import numpy
ImportError: No module named numpy

Please help!!

19. Quiz GuassianNB Deployment

Traceback (most recent call last):
File "vm_main.py", line 33, in
import main
File "/tmp/vmuser_qleklyiyim/main.py", line 2, in
import studentMain
File "/tmp/vmuser_qleklyiyim/studentMain.py", line 13, in
from ClassifyNB import classify
File "/tmp/vmuser_qleklyiyim/ClassifyNB.py", line 3
from sklearn.naive_bayes import GuassianNB
^
IndentationError: expected an indented block

kindly help me in this
i am getting this error

Python 3 support

I am used to using Python 3, and I found the code support Python 2 only. So Is there any reason to have to use python 2?

Miniproject 11: parse_out_email_text.py initial code begins with the stemmer

In the Warming Up with parseOutText() part of the mini-project, I was frustrated to find that following the instructions, which gave me the text, "hi everyon if you can read this messag your proper use parseouttext pleas proceed to the next part of the project", resulted in a wrong answer.

I moved on to the next subproject and learned that I was supposed to augment the function with a stemmer. So, I suspect that a pull request by someone who had already completed that part of the project accidentally got merged.

Memory Error

When running nb_author_id.py, i get this in the logcat

Traceback (most recent call last):
File "C:/Users/burha/PycharmProjects/ud120-projects/naive_bayes/nb_author_id.py", line 30, in
clf.fit(features_train, labels_train)
File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\site-packages\sklearn\naive_bayes.py", line 184, in fit
sample_weight=sample_weight)
File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\site-packages\sklearn\naive_bayes.py", line 341, in _partial_fit
epsilon = 1e-9 * np.var(X, axis=0).max()
File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\site-packages\numpy\core\fromnumeric.py", line 3146, in var
**kwargs)
File "C:\Users\user\AppData\Local\Programs\Python\Python36-32\lib\site-packages\numpy\core_methods.py", line 112, in _var
x = asanyarray(arr - arrmean)
MemoryError

I am on Windows 10 64bit core i5 8 gb ram.

How should I solve this ?

Naive Bayes, can't preprocess/unpack data set

Hi,

I'm trying to do the naive bayer classier but I'm having a very basic problem. When I run the nb_author_id python script I get an error message within the 'preprocess function'.

authors_file_handler = open(authors_file, "r")
IOError: [Errno 2] No such file or directory: '../tools/email_authors.pkl'

I checked, the 'email_authors.pkl' file is in the /tools directory as is the 'word_data.pkl' the fiction has to also open in order to create the data set. The 'email_preprocess.py' script is in the same directory.

my python version: 2.7.13

Sample solutions?

Are there any sample solutions to mini-projects available? How it should be done and how to plot data in matplotlib?

linux installation

Hi
I had some problems with the tools/startup.py script:

  1. I'm in my work environment so there is a proxy, this fact cause SSL error when downloading enron_mail_20150507.tgz from https://www.cs.cmu.edu/~./enron/enron_mail_20150507.tgz.
    This could be easily be solved by downloading the same file by using HTTP (instead of HTTPS).
    The issue is very simliar to weecology/retriever#268

  2. Extracting the file took very long time, mainly because of huge memory consumption.
    running simple linux command of tar xzf enron_mail_20150507.tgz exctract the same file within seconds.
    So consider adding the following bash script for linux users:

#!/bin/bash

echo
echo "downloading the Enron dataset (this may take a while)"
echo "to check on progress, you can cd up one level, then execute <ls -lthr>"
echo "Enron dataset should be last item on the list, along with its current size"
echo "download will complete at about 423 MB"
url="http://www.cs.cmu.edu/~./enron/enron_mail_20150507.tgz"
cd ..
curl $url -o enron_mail_20150507.tgz
echo "download complete!"

echo
echo "unzipping Enron dataset (this may take a while)"
tar xzf enron_mail_20150507.tgz
echo "you're ready to go!"

3.6 Conversion

Below is some code which converts email_preprocess in tools to python 3.x, hopes this helps. (Sorry unable to do a push)

import pickle
import numpy

from sklearn import cross_validation
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.feature_selection import SelectPercentile, f_classif

def preprocess(words_file = "../tools/word_data_unix.pkl", authors_file="../tools/email_authors.pkl"):
"""
this function takes a pre-made list of email texts (by default word_data.pkl)
and the corresponding authors (by default email_authors.pkl) and performs
a number of preprocessing steps:
-- splits into training/testing sets (10% testing)
-- vectorizes into tfidf matrix
-- selects/keeps most helpful features

    after this, the feaures and labels are put into numpy arrays, which play nice with sklearn functions

    4 objects are returned:
        -- training/testing features
        -- training/testing labels

"""
"""
convert dos linefeeds (crlf) to unix (lf)
usage: dos2unix.py 
"""
original = "../tools/word_data.pkl"
destination = "../tools/word_data_unix.pkl"

content = ''
outsize = 0
with open(original, 'rb') as infile:
    content = infile.read()
    with open(destination, 'wb') as output:
        for line in content.splitlines():
            outsize += len(line) + 1
            output.write(line + str.encode('\n'))

print("Done. Saved %s bytes." % (len(content)-outsize))
  
### the words (features) and authors (labels), already largely preprocessed
### this preprocessing will be repeated in the text learning mini-project
authors_file_handler = open(authors_file, "rb")
authors = pickle.load(authors_file_handler)
authors_file_handler.close()

words_file_handler = open(words_file, "rb")
word_data = pickle.load(words_file_handler)
words_file_handler.close()

### test_size is the percentage of events assigned to the test set
### (remainder go into training)
features_train, features_test, labels_train, labels_test = cross_validation.train_test_split(word_data, authors, test_size=0.1, random_state=42)



### text vectorization--go from strings to lists of numbers
vectorizer = TfidfVectorizer(sublinear_tf=True, max_df=0.5,
                             stop_words='english')
features_train_transformed = vectorizer.fit_transform(features_train)
features_test_transformed  = vectorizer.transform(features_test)



### feature selection, because text is super high dimensional and 
### can be really computationally chewy as a result
selector = SelectPercentile(f_classif, percentile=10)
selector.fit(features_train_transformed, labels_train)
features_train_transformed = selector.transform(features_train_transformed).toarray()
features_test_transformed  = selector.transform(features_test_transformed).toarray()

### info on the data
print ("no. of Chris training emails:", sum(labels_train))
print ("no. of Sara training emails:", len(labels_train)-sum(labels_train))

return features_train_transformed, features_test_transformed, labels_train, labels_test

print clarification

Hi,

All udacity machine learning python scripts are using print statements in the following way.

print "Hello World"

But when i am executing the script, expecting parenthesis. When i run the script by modifying with parenthesis, executing successfully. May i know what might be the reason. I am using Python 3.6 with Anaconda.

Thanks

featureFormat() doesn't handle string features

featureFormat() barfs on the Enron dataset because of the 'email_address' feature (key) in the dictionary after it gets unpickled.

I'm using the function like this (from the 'datasets_questions' directory within the source tree):

import os
import pickle
import random
import re
import sys
sys.path.append(os.path.abspath('../tools'))
from feature_format import featureFormat

enron_data = pickle.load(open("../final_project/final_project_dataset.pkl", "r"))
choice = random.choice(enron_data.keys())
enron_np = featureFormat(enron_data, enron_data[choice].keys())
print(enron_np)`

This fails with an exception:

`Traceback (most recent call last):
  File "explore_enron_data.py", line 29, in <module>
    enron_np = featureFormat(enron_data, enron_data[choice].keys())
  File "/home/pisymbol/Development/ud120-projects/tools/feature_format.py", line 75, in featureFormat
    tmp_list.append( float(value) )
ValueError: could not convert string to float: [email protected]

A simple type check fixes this:

diff --git a/tools/feature_format.py b/tools/feature_format.py
index 7ca78ac..39367a6 100644
--- a/tools/feature_format.py
+++ b/tools/feature_format.py
@@ -72,7 +72,10 @@ def featureFormat( dictionary, features, remove_NaN=True, remove_all_zeroes=True
             value = dictionary[key][feature]
             if value=="NaN" and remove_NaN:
                 value = 0
-            tmp_list.append( float(value) )
+            if type(value) == int:
+                tmp_list.append( float(value) )
+            else:
+                tmp_list.append( value )

         # Logic for deciding whether or not to add the data point.
         append = True

With the above diff, my output is now:

[['365788.0' '807.0' '0.0' ..., '0.0' '[email protected]' '38.0']
 ['267102.0' '0.0' '1295738.0' ..., '1586055.0' '0.0' '0.0']
 ['170941.0' '0.0' '0.0' ..., '0.0' '[email protected]' '0.0']
 ...,
 ['265214.0' '533.0' '227449.0' ..., '0.0' '[email protected]'
  '0.0']
 ['278601.0' '865.0' '0.0' ..., '0.0' '[email protected]' '188.0']
 ['274975.0' '873.0' '0.0' ..., '71023.0' '[email protected]' '52.0']]

Or perhaps I'm using the function incorrectly?

If not, I could also open a merge request. Let me know.

Incorrect data in final project

There are differences between enron61702insiderpay.pdf and final_project_dataset.pkl.

Exporting JSON from final_project_dataset.pkl:

import json
data_dict = pickle.load(open("final_project_dataset.pkl", "r"))
with open("data.json", "w") as outfile:
    json.dump(data_dict, outfile, indent=4, separators=(",", ": "))
exit()

Example: BELFER, ROBERT A

JSON from final_project_dataset.pkl:

"BELFER ROBERT": {
  "salary": "NaN",
  "to_messages": "NaN",
  "deferral_payments": -102500,
  "total_payments": 102500,
  "exercised_stock_options": 3285,
  "bonus": "NaN",
  "restricted_stock": "NaN",
  "shared_receipt_with_poi": "NaN",
  "restricted_stock_deferred": 44093,
  "total_stock_value": -44093,
  "expenses": "NaN",
  "loan_advances": "NaN",
  "from_messages": "NaN",
  "other": "NaN",
  "from_this_person_to_poi": "NaN",
  "poi": false,
  "director_fees": 3285,
  "deferred_income": "NaN",
  "long_term_incentive": "NaN",
  "email_address": "NaN",
  "from_poi_to_this_person": "NaN"
},

Differences between enron61702insiderpay.pdf and final_project_dataset.pkl.

  • lines that differ are highlighted
Key pdf pkl
Salary NaN NaN
Bonus NaN NaN
Long Term Incentive NaN NaN
Deferred Income 102500 NaN
Deferral Payments NaN -102500
Loan Advances NaN NaN
Other NaN NaN
Expenses 3285 NaN
Director Fees 102500 3285
Total Payments 3285 102500
Exercised Stock Options NaN 3285
Restricted Stock 44093 NaN
Restricted Stock Deferred 44093 44093
Total Stock Value NaN -44093

BELFER, ROBERT A in enron61702insiderpay.pdf:

screen shot 2015-09-02 at 11 14 21

Exported data.json:

{
    "METTS MARK": {
        "salary": 365788,
        "to_messages": 807,
        "deferral_payments": "NaN",
        "total_payments": 1061827,
        "exercised_stock_options": "NaN",
        "bonus": 600000,
        "restricted_stock": 585062,
        "shared_receipt_with_poi": 702,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 585062,
        "expenses": 94299,
        "loan_advances": "NaN",
        "from_messages": 29,
        "other": 1740,
        "from_this_person_to_poi": 1,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 38
    },
    "BAXTER JOHN C": {
        "salary": 267102,
        "to_messages": "NaN",
        "deferral_payments": 1295738,
        "total_payments": 5634343,
        "exercised_stock_options": 6680544,
        "bonus": 1200000,
        "restricted_stock": 3942714,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 10623258,
        "expenses": 11200,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 2660303,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -1386055,
        "long_term_incentive": 1586055,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "ELLIOTT STEVEN": {
        "salary": 170941,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 211725,
        "exercised_stock_options": 4890344,
        "bonus": 350000,
        "restricted_stock": 1788391,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 6678735,
        "expenses": 78552,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 12961,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -400729,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "CORDES WILLIAM R": {
        "salary": "NaN",
        "to_messages": 764,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 651850,
        "bonus": "NaN",
        "restricted_stock": 386335,
        "shared_receipt_with_poi": 58,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1038185,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 12,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 10
    },
    "HANNON KEVIN P": {
        "salary": 243293,
        "to_messages": 1045,
        "deferral_payments": "NaN",
        "total_payments": 288682,
        "exercised_stock_options": 5538001,
        "bonus": 1500000,
        "restricted_stock": 853064,
        "shared_receipt_with_poi": 1035,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 6391065,
        "expenses": 34039,
        "loan_advances": "NaN",
        "from_messages": 32,
        "other": 11350,
        "from_this_person_to_poi": 21,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -3117011,
        "long_term_incentive": 1617011,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 32
    },
    "MORDAUNT KRISTINA M": {
        "salary": 267093,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 628522,
        "exercised_stock_options": "NaN",
        "bonus": 325000,
        "restricted_stock": 208510,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 208510,
        "expenses": 35018,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 1411,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "MEYER ROCKFORD G": {
        "salary": "NaN",
        "to_messages": 232,
        "deferral_payments": 1848227,
        "total_payments": 1848227,
        "exercised_stock_options": 493489,
        "bonus": "NaN",
        "restricted_stock": 462384,
        "shared_receipt_with_poi": 22,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 955873,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 28,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "MCMAHON JEFFREY": {
        "salary": 370448,
        "to_messages": 2355,
        "deferral_payments": "NaN",
        "total_payments": 4099771,
        "exercised_stock_options": 1104054,
        "bonus": 2600000,
        "restricted_stock": 558801,
        "shared_receipt_with_poi": 2228,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1662855,
        "expenses": 137108,
        "loan_advances": "NaN",
        "from_messages": 48,
        "other": 297353,
        "from_this_person_to_poi": 26,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 694862,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 58
    },
    "HORTON STANLEY C": {
        "salary": "NaN",
        "to_messages": 2350,
        "deferral_payments": 3131860,
        "total_payments": 3131860,
        "exercised_stock_options": 5210569,
        "bonus": "NaN",
        "restricted_stock": 2046079,
        "shared_receipt_with_poi": 1074,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 7256648,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 1073,
        "other": "NaN",
        "from_this_person_to_poi": 15,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 44
    },
    "PIPER GREGORY F": {
        "salary": 197091,
        "to_messages": 1238,
        "deferral_payments": 1130036,
        "total_payments": 1737629,
        "exercised_stock_options": 880290,
        "bonus": 400000,
        "restricted_stock": 409554,
        "shared_receipt_with_poi": 742,
        "restricted_stock_deferred": -409554,
        "total_stock_value": 880290,
        "expenses": 43057,
        "loan_advances": "NaN",
        "from_messages": 222,
        "other": 778,
        "from_this_person_to_poi": 48,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -33333,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 61
    },
    "HUMPHREY GENE E": {
        "salary": 130724,
        "to_messages": 128,
        "deferral_payments": 2964506,
        "total_payments": 3100224,
        "exercised_stock_options": 2282768,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 119,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2282768,
        "expenses": 4994,
        "loan_advances": "NaN",
        "from_messages": 17,
        "other": "NaN",
        "from_this_person_to_poi": 17,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 10
    },
    "UMANOFF ADAM S": {
        "salary": 288589,
        "to_messages": 111,
        "deferral_payments": "NaN",
        "total_payments": 1130461,
        "exercised_stock_options": "NaN",
        "bonus": 788750,
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 41,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 53122,
        "loan_advances": "NaN",
        "from_messages": 18,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 12
    },
    "BLACHMAN JEREMY M": {
        "salary": 248546,
        "to_messages": 2475,
        "deferral_payments": "NaN",
        "total_payments": 2014835,
        "exercised_stock_options": 765313,
        "bonus": 850000,
        "restricted_stock": 189041,
        "shared_receipt_with_poi": 2326,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 954354,
        "expenses": 84208,
        "loan_advances": "NaN",
        "from_messages": 14,
        "other": 272,
        "from_this_person_to_poi": 2,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 831809,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 25
    },
    "SUNDE MARTIN": {
        "salary": 257486,
        "to_messages": 2647,
        "deferral_payments": "NaN",
        "total_payments": 1545059,
        "exercised_stock_options": "NaN",
        "bonus": 700000,
        "restricted_stock": 698920,
        "shared_receipt_with_poi": 2565,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 698920,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 38,
        "other": 111122,
        "from_this_person_to_poi": 13,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 476451,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 37
    },
    "GIBBS DANA R": {
        "salary": "NaN",
        "to_messages": 169,
        "deferral_payments": 504610,
        "total_payments": 966522,
        "exercised_stock_options": 2218275,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 23,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2218275,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 12,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 461912,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "LOWRY CHARLES P": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 372205,
        "bonus": "NaN",
        "restricted_stock": 153686,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -153686,
        "total_stock_value": 372205,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "COLWELL WESLEY": {
        "salary": 288542,
        "to_messages": 1758,
        "deferral_payments": 27610,
        "total_payments": 1490344,
        "exercised_stock_options": "NaN",
        "bonus": 1200000,
        "restricted_stock": 698242,
        "shared_receipt_with_poi": 1132,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 698242,
        "expenses": 16514,
        "loan_advances": "NaN",
        "from_messages": 40,
        "other": 101740,
        "from_this_person_to_poi": 11,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -144062,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 240
    },
    "MULLER MARK S": {
        "salary": 251654,
        "to_messages": 136,
        "deferral_payments": 842924,
        "total_payments": 3202070,
        "exercised_stock_options": 1056320,
        "bonus": 1100000,
        "restricted_stock": 360528,
        "shared_receipt_with_poi": 114,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1416848,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 16,
        "other": 947,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -719000,
        "long_term_incentive": 1725545,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 12
    },
    "JACKSON CHARLENE R": {
        "salary": 288558,
        "to_messages": 258,
        "deferral_payments": "NaN",
        "total_payments": 551174,
        "exercised_stock_options": 185063,
        "bonus": 250000,
        "restricted_stock": 540672,
        "shared_receipt_with_poi": 117,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 725735,
        "expenses": 10181,
        "loan_advances": "NaN",
        "from_messages": 56,
        "other": 2435,
        "from_this_person_to_poi": 19,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 25
    },
    "WESTFAHL RICHARD K": {
        "salary": 63744,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 762135,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 384930,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 384930,
        "expenses": 51870,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 401130,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -10800,
        "long_term_incentive": 256191,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "WALTERS GARETH W": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": 53625,
        "total_payments": 87410,
        "exercised_stock_options": 1030329,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1030329,
        "expenses": 33785,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "WALLS JR ROBERT H": {
        "salary": 357091,
        "to_messages": 671,
        "deferral_payments": "NaN",
        "total_payments": 1798780,
        "exercised_stock_options": 4346544,
        "bonus": 850000,
        "restricted_stock": 1552453,
        "shared_receipt_with_poi": 215,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 5898997,
        "expenses": 50936,
        "loan_advances": "NaN",
        "from_messages": 146,
        "other": 2,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 540751,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 17
    },
    "KITCHEN LOUISE": {
        "salary": 271442,
        "to_messages": 8305,
        "deferral_payments": "NaN",
        "total_payments": 3471141,
        "exercised_stock_options": 81042,
        "bonus": 3100000,
        "restricted_stock": 466101,
        "shared_receipt_with_poi": 3669,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 547143,
        "expenses": 5774,
        "loan_advances": "NaN",
        "from_messages": 1728,
        "other": 93925,
        "from_this_person_to_poi": 194,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 251
    },
    "CHAN RONNIE": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 32460,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -32460,
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 98784,
        "deferred_income": -98784,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "BELFER ROBERT": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": -102500,
        "total_payments": 102500,
        "exercised_stock_options": 3285,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": 44093,
        "total_stock_value": -44093,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 3285,
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "SHANKMAN JEFFREY A": {
        "salary": 304110,
        "to_messages": 3221,
        "deferral_payments": "NaN",
        "total_payments": 3038702,
        "exercised_stock_options": 1441898,
        "bonus": 2000000,
        "restricted_stock": 630137,
        "shared_receipt_with_poi": 1730,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2072035,
        "expenses": 178979,
        "loan_advances": "NaN",
        "from_messages": 2681,
        "other": 1191,
        "from_this_person_to_poi": 83,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 554422,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 94
    },
    "WODRASKA JOHN": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 189583,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 189583,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "BERGSIEKER RICHARD P": {
        "salary": 187922,
        "to_messages": 383,
        "deferral_payments": "NaN",
        "total_payments": 618850,
        "exercised_stock_options": "NaN",
        "bonus": 250000,
        "restricted_stock": 659249,
        "shared_receipt_with_poi": 233,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 659249,
        "expenses": 59175,
        "loan_advances": "NaN",
        "from_messages": 59,
        "other": 427316,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -485813,
        "long_term_incentive": 180250,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 4
    },
    "URQUHART JOHN A": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 228656,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 228656,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 36666,
        "deferred_income": -36666,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "BIBI PHILIPPE A": {
        "salary": 213625,
        "to_messages": 1607,
        "deferral_payments": "NaN",
        "total_payments": 2047593,
        "exercised_stock_options": 1465734,
        "bonus": 1000000,
        "restricted_stock": 378082,
        "shared_receipt_with_poi": 1336,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1843816,
        "expenses": 38559,
        "loan_advances": "NaN",
        "from_messages": 40,
        "other": 425688,
        "from_this_person_to_poi": 8,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 369721,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 23
    },
    "RIEKER PAULA H": {
        "salary": 249201,
        "to_messages": 1328,
        "deferral_payments": 214678,
        "total_payments": 1099100,
        "exercised_stock_options": 1635238,
        "bonus": 700000,
        "restricted_stock": 283649,
        "shared_receipt_with_poi": 1258,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1918887,
        "expenses": 33271,
        "loan_advances": "NaN",
        "from_messages": 82,
        "other": 1950,
        "from_this_person_to_poi": 48,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -100000,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 35
    },
    "WHALEY DAVID A": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 98718,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 98718,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "BECK SALLY W": {
        "salary": 231330,
        "to_messages": 7315,
        "deferral_payments": "NaN",
        "total_payments": 969068,
        "exercised_stock_options": "NaN",
        "bonus": 700000,
        "restricted_stock": 126027,
        "shared_receipt_with_poi": 2639,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 126027,
        "expenses": 37172,
        "loan_advances": "NaN",
        "from_messages": 4343,
        "other": 566,
        "from_this_person_to_poi": 386,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 144
    },
    "HAUG DAVID L": {
        "salary": "NaN",
        "to_messages": 573,
        "deferral_payments": "NaN",
        "total_payments": 475,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 2217299,
        "shared_receipt_with_poi": 471,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2217299,
        "expenses": 475,
        "loan_advances": "NaN",
        "from_messages": 19,
        "other": "NaN",
        "from_this_person_to_poi": 7,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 4
    },
    "ECHOLS JOHN B": {
        "salary": 182245,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 2692324,
        "exercised_stock_options": 601438,
        "bonus": 200000,
        "restricted_stock": 407503,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1008941,
        "expenses": 21530,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 53775,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 2234774,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "MENDELSOHN JOHN": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 148,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 148,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 103750,
        "deferred_income": -103750,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "HICKERSON GARY J": {
        "salary": 211788,
        "to_messages": 1320,
        "deferral_payments": "NaN",
        "total_payments": 2081796,
        "exercised_stock_options": "NaN",
        "bonus": 1700000,
        "restricted_stock": 441096,
        "shared_receipt_with_poi": 900,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 441096,
        "expenses": 98849,
        "loan_advances": "NaN",
        "from_messages": 27,
        "other": 1936,
        "from_this_person_to_poi": 1,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 69223,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 40
    },
    "CLINE KENNETH W": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 662086,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -472568,
        "total_stock_value": 189518,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "LEWIS RICHARD": {
        "salary": "NaN",
        "to_messages": 952,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 850477,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 739,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 850477,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 26,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 10
    },
    "HAYES ROBERT E": {
        "salary": "NaN",
        "to_messages": 504,
        "deferral_payments": 7961,
        "total_payments": 7961,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 151418,
        "shared_receipt_with_poi": 50,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 151418,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 12,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 16
    },
    "MCCARTY DANNY J": {
        "salary": "NaN",
        "to_messages": 1433,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 664375,
        "bonus": "NaN",
        "restricted_stock": 94556,
        "shared_receipt_with_poi": 508,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 758931,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 215,
        "other": "NaN",
        "from_this_person_to_poi": 2,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 25
    },
    "KOPPER MICHAEL J": {
        "salary": 224305,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 2652612,
        "exercised_stock_options": "NaN",
        "bonus": 800000,
        "restricted_stock": 985032,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 985032,
        "expenses": 118134,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 907502,
        "from_this_person_to_poi": "NaN",
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 602671,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "LEFF DANIEL P": {
        "salary": 273746,
        "to_messages": 2822,
        "deferral_payments": "NaN",
        "total_payments": 2664228,
        "exercised_stock_options": "NaN",
        "bonus": 1000000,
        "restricted_stock": 360528,
        "shared_receipt_with_poi": 2672,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 360528,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 63,
        "other": 3083,
        "from_this_person_to_poi": 14,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 1387399,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 67
    },
    "LAVORATO JOHN J": {
        "salary": 339288,
        "to_messages": 7259,
        "deferral_payments": "NaN",
        "total_payments": 10425757,
        "exercised_stock_options": 4158995,
        "bonus": 8000000,
        "restricted_stock": 1008149,
        "shared_receipt_with_poi": 3962,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 5167144,
        "expenses": 49537,
        "loan_advances": "NaN",
        "from_messages": 2585,
        "other": 1552,
        "from_this_person_to_poi": 411,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 2035380,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 528
    },
    "BERBERIAN DAVID": {
        "salary": 216582,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 228474,
        "exercised_stock_options": 1624396,
        "bonus": "NaN",
        "restricted_stock": 869220,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2493616,
        "expenses": 11892,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "DETMERING TIMOTHY J": {
        "salary": 210500,
        "to_messages": "NaN",
        "deferral_payments": 875307,
        "total_payments": 1204583,
        "exercised_stock_options": 2027865,
        "bonus": 425000,
        "restricted_stock": 315068,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -315068,
        "total_stock_value": 2027865,
        "expenses": 52255,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 1105,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -775241,
        "long_term_incentive": 415657,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "WAKEHAM JOHN": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 213071,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 103773,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 109298,
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "POWERS WILLIAM": {
        "salary": "NaN",
        "to_messages": 653,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 12,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 26,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": 17500,
        "deferred_income": -17500,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "GOLD JOSEPH": {
        "salary": 272880,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 2146973,
        "exercised_stock_options": 436515,
        "bonus": 750000,
        "restricted_stock": 441096,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 877611,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 819288,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 304805,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "BANNANTINE JAMES M": {
        "salary": 477,
        "to_messages": 566,
        "deferral_payments": "NaN",
        "total_payments": 916197,
        "exercised_stock_options": 4046157,
        "bonus": "NaN",
        "restricted_stock": 1757552,
        "shared_receipt_with_poi": 465,
        "restricted_stock_deferred": -560222,
        "total_stock_value": 5243487,
        "expenses": 56301,
        "loan_advances": "NaN",
        "from_messages": 29,
        "other": 864523,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -5104,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 39
    },
    "DUNCAN JOHN H": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 77492,
        "exercised_stock_options": 371750,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 371750,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 102492,
        "deferred_income": -25000,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "SHAPIRO RICHARD S": {
        "salary": 269076,
        "to_messages": 15149,
        "deferral_payments": "NaN",
        "total_payments": 1057548,
        "exercised_stock_options": 607837,
        "bonus": 650000,
        "restricted_stock": 379164,
        "shared_receipt_with_poi": 4527,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 987001,
        "expenses": 137767,
        "loan_advances": "NaN",
        "from_messages": 1215,
        "other": 705,
        "from_this_person_to_poi": 65,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 74
    },
    "SHERRIFF JOHN R": {
        "salary": 428780,
        "to_messages": 3187,
        "deferral_payments": "NaN",
        "total_payments": 4335388,
        "exercised_stock_options": 1835558,
        "bonus": 1500000,
        "restricted_stock": 1293424,
        "shared_receipt_with_poi": 2103,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 3128982,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 92,
        "other": 1852186,
        "from_this_person_to_poi": 23,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 554422,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 28
    },
    "SHELBY REX": {
        "salary": 211844,
        "to_messages": 225,
        "deferral_payments": "NaN",
        "total_payments": 2003885,
        "exercised_stock_options": 1624396,
        "bonus": 200000,
        "restricted_stock": 869220,
        "shared_receipt_with_poi": 91,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2493616,
        "expenses": 22884,
        "loan_advances": "NaN",
        "from_messages": 39,
        "other": 1573324,
        "from_this_person_to_poi": 14,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -4167,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 13
    },
    "LEMAISTRE CHARLES": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 87492,
        "exercised_stock_options": 412878,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 412878,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 112492,
        "deferred_income": -25000,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "DEFFNER JOSEPH M": {
        "salary": 206121,
        "to_messages": 714,
        "deferral_payments": "NaN",
        "total_payments": 1208649,
        "exercised_stock_options": 17378,
        "bonus": 600000,
        "restricted_stock": 141833,
        "shared_receipt_with_poi": 552,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 159211,
        "expenses": 41626,
        "loan_advances": "NaN",
        "from_messages": 74,
        "other": 25553,
        "from_this_person_to_poi": 4,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 335349,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 115
    },
    "KISHKILL JOSEPH G": {
        "salary": 174246,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 704896,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 1034346,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1034346,
        "expenses": 116335,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 465357,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -51042,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "WHALLEY LAWRENCE G": {
        "salary": 510364,
        "to_messages": 6019,
        "deferral_payments": "NaN",
        "total_payments": 4677574,
        "exercised_stock_options": 3282960,
        "bonus": 3000000,
        "restricted_stock": 2796177,
        "shared_receipt_with_poi": 3920,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 6079137,
        "expenses": 57838,
        "loan_advances": "NaN",
        "from_messages": 556,
        "other": 301026,
        "from_this_person_to_poi": 24,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 808346,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 186
    },
    "MCCONNELL MICHAEL S": {
        "salary": 365038,
        "to_messages": 3329,
        "deferral_payments": "NaN",
        "total_payments": 2101364,
        "exercised_stock_options": 1623010,
        "bonus": 1100000,
        "restricted_stock": 1478269,
        "shared_receipt_with_poi": 2189,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 3101279,
        "expenses": 81364,
        "loan_advances": "NaN",
        "from_messages": 2742,
        "other": 540,
        "from_this_person_to_poi": 194,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 554422,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 92
    },
    "PIRO JIM": {
        "salary": "NaN",
        "to_messages": 58,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 47304,
        "shared_receipt_with_poi": 3,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 47304,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 16,
        "other": "NaN",
        "from_this_person_to_poi": 1,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "DELAINEY DAVID W": {
        "salary": 365163,
        "to_messages": 3093,
        "deferral_payments": "NaN",
        "total_payments": 4747979,
        "exercised_stock_options": 2291113,
        "bonus": 3000000,
        "restricted_stock": 1323148,
        "shared_receipt_with_poi": 2097,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 3614261,
        "expenses": 86174,
        "loan_advances": "NaN",
        "from_messages": 3069,
        "other": 1661,
        "from_this_person_to_poi": 609,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 1294981,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 66
    },
    "SULLIVAN-SHAKLOVITZ COLLEEN": {
        "salary": 162779,
        "to_messages": "NaN",
        "deferral_payments": 181993,
        "total_payments": 999356,
        "exercised_stock_options": 1362375,
        "bonus": 100000,
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1362375,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 162,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 554422,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "WROBEL BRUCE": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 139130,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 139130,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "LINDHOLM TOD A": {
        "salary": 236457,
        "to_messages": "NaN",
        "deferral_payments": 204075,
        "total_payments": 875889,
        "exercised_stock_options": 2549361,
        "bonus": 200000,
        "restricted_stock": 514847,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 3064208,
        "expenses": 57727,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 2630,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 175000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "MEYER JEROME J": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 2151,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 2151,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 38346,
        "deferred_income": -38346,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "LAY KENNETH L": {
        "salary": 1072321,
        "to_messages": 4273,
        "deferral_payments": 202911,
        "total_payments": 103559793,
        "exercised_stock_options": 34348384,
        "bonus": 7000000,
        "restricted_stock": 14761694,
        "shared_receipt_with_poi": 2411,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 49110078,
        "expenses": 99832,
        "loan_advances": 81525000,
        "from_messages": 36,
        "other": 10359729,
        "from_this_person_to_poi": 16,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -300000,
        "long_term_incentive": 3600000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 123
    },
    "BUTTS ROBERT H": {
        "salary": 261516,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 1271582,
        "exercised_stock_options": "NaN",
        "bonus": 750000,
        "restricted_stock": 417619,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 417619,
        "expenses": 9410,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 150656,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -75000,
        "long_term_incentive": 175000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "OLSON CINDY K": {
        "salary": 329078,
        "to_messages": 1184,
        "deferral_payments": 77716,
        "total_payments": 1321557,
        "exercised_stock_options": 1637034,
        "bonus": 750000,
        "restricted_stock": 969729,
        "shared_receipt_with_poi": 856,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2606763,
        "expenses": 63791,
        "loan_advances": "NaN",
        "from_messages": 52,
        "other": 972,
        "from_this_person_to_poi": 15,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 100000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 20
    },
    "MCDONALD REBECCA": {
        "salary": "NaN",
        "to_messages": 894,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 757301,
        "bonus": "NaN",
        "restricted_stock": 934065,
        "shared_receipt_with_poi": 720,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1691366,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 13,
        "other": "NaN",
        "from_this_person_to_poi": 1,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 54
    },
    "CUMBERLAND MICHAEL S": {
        "salary": 184899,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 807956,
        "exercised_stock_options": "NaN",
        "bonus": 325000,
        "restricted_stock": 207940,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 207940,
        "expenses": 22344,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 713,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 275000,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "GAHN ROBERT S": {
        "salary": 192008,
        "to_messages": "NaN",
        "deferral_payments": 73122,
        "total_payments": 900585,
        "exercised_stock_options": 83237,
        "bonus": 509870,
        "restricted_stock": 235370,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 318607,
        "expenses": 50080,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 76547,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -1042,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "MCCLELLAN GEORGE": {
        "salary": 263413,
        "to_messages": 1744,
        "deferral_payments": "NaN",
        "total_payments": 1318763,
        "exercised_stock_options": 506765,
        "bonus": 900000,
        "restricted_stock": 441096,
        "shared_receipt_with_poi": 1469,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 947861,
        "expenses": 228763,
        "loan_advances": "NaN",
        "from_messages": 49,
        "other": 51587,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -125000,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 52
    },
    "HERMANN ROBERT J": {
        "salary": 262663,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 1297461,
        "exercised_stock_options": 187500,
        "bonus": 700000,
        "restricted_stock": 480632,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 668132,
        "expenses": 48357,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 416441,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -280000,
        "long_term_incentive": 150000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "SCRIMSHAW MATTHEW": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 759557,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 759557,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "GATHMANN WILLIAM D": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 1753766,
        "bonus": "NaN",
        "restricted_stock": 264013,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -72419,
        "total_stock_value": 1945360,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "HAEDICKE MARK E": {
        "salary": 374125,
        "to_messages": 4009,
        "deferral_payments": 2157527,
        "total_payments": 3859065,
        "exercised_stock_options": 608750,
        "bonus": 1150000,
        "restricted_stock": 524169,
        "shared_receipt_with_poi": 1847,
        "restricted_stock_deferred": -329825,
        "total_stock_value": 803094,
        "expenses": 76169,
        "loan_advances": "NaN",
        "from_messages": 1941,
        "other": 52382,
        "from_this_person_to_poi": 61,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -934484,
        "long_term_incentive": 983346,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 180
    },
    "BOWEN JR RAYMOND M": {
        "salary": 278601,
        "to_messages": 1858,
        "deferral_payments": "NaN",
        "total_payments": 2669589,
        "exercised_stock_options": "NaN",
        "bonus": 1350000,
        "restricted_stock": 252055,
        "shared_receipt_with_poi": 1593,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 252055,
        "expenses": 65907,
        "loan_advances": "NaN",
        "from_messages": 27,
        "other": 1621,
        "from_this_person_to_poi": 15,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -833,
        "long_term_incentive": 974293,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 140
    },
    "GILLIS JOHN": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 9803,
        "bonus": "NaN",
        "restricted_stock": 75838,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 85641,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "FITZGERALD JAY L": {
        "salary": 199157,
        "to_messages": 936,
        "deferral_payments": "NaN",
        "total_payments": 1414857,
        "exercised_stock_options": 664461,
        "bonus": 350000,
        "restricted_stock": 956775,
        "shared_receipt_with_poi": 723,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1621236,
        "expenses": 23870,
        "loan_advances": "NaN",
        "from_messages": 16,
        "other": 285414,
        "from_this_person_to_poi": 8,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 556416,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 1
    },
    "MORAN MICHAEL P": {
        "salary": "NaN",
        "to_messages": 672,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 59539,
        "bonus": "NaN",
        "restricted_stock": 161602,
        "shared_receipt_with_poi": 127,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 221141,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 19,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "REDMOND BRIAN L": {
        "salary": 96840,
        "to_messages": 1671,
        "deferral_payments": "NaN",
        "total_payments": 111529,
        "exercised_stock_options": 7509039,
        "bonus": "NaN",
        "restricted_stock": 381285,
        "shared_receipt_with_poi": 1063,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 7890324,
        "expenses": 14689,
        "loan_advances": "NaN",
        "from_messages": 221,
        "other": "NaN",
        "from_this_person_to_poi": 49,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 204
    },
    "BAZELIDES PHILIP J": {
        "salary": 80818,
        "to_messages": "NaN",
        "deferral_payments": 684694,
        "total_payments": 860136,
        "exercised_stock_options": 1599641,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1599641,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 874,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 93750,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "BELDEN TIMOTHY N": {
        "salary": 213999,
        "to_messages": 7991,
        "deferral_payments": 2144013,
        "total_payments": 5501630,
        "exercised_stock_options": 953136,
        "bonus": 5249999,
        "restricted_stock": 157569,
        "shared_receipt_with_poi": 5521,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1110705,
        "expenses": 17355,
        "loan_advances": "NaN",
        "from_messages": 484,
        "other": 210698,
        "from_this_person_to_poi": 108,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -2334434,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 228
    },
    "DURAN WILLIAM D": {
        "salary": 210692,
        "to_messages": 904,
        "deferral_payments": "NaN",
        "total_payments": 2093263,
        "exercised_stock_options": 1451869,
        "bonus": 750000,
        "restricted_stock": 189041,
        "shared_receipt_with_poi": 599,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1640910,
        "expenses": 25785,
        "loan_advances": "NaN",
        "from_messages": 12,
        "other": 1568,
        "from_this_person_to_poi": 3,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 1105218,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 106
    },
    "THORN TERENCE H": {
        "salary": 222093,
        "to_messages": 266,
        "deferral_payments": 16586,
        "total_payments": 911453,
        "exercised_stock_options": 4452476,
        "bonus": "NaN",
        "restricted_stock": 365320,
        "shared_receipt_with_poi": 73,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 4817796,
        "expenses": 46145,
        "loan_advances": "NaN",
        "from_messages": 41,
        "other": 426629,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 200000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "FASTOW ANDREW S": {
        "salary": 440698,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 2424083,
        "exercised_stock_options": "NaN",
        "bonus": 1300000,
        "restricted_stock": 1794412,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1794412,
        "expenses": 55921,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 277464,
        "from_this_person_to_poi": "NaN",
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -1386055,
        "long_term_incentive": 1736055,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "FOY JOE": {
        "salary": "NaN",
        "to_messages": 57,
        "deferral_payments": 181755,
        "total_payments": 181755,
        "exercised_stock_options": 343434,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 2,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 343434,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 13,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "CALGER CHRISTOPHER F": {
        "salary": 240189,
        "to_messages": 2598,
        "deferral_payments": "NaN",
        "total_payments": 1639297,
        "exercised_stock_options": "NaN",
        "bonus": 1250000,
        "restricted_stock": 126027,
        "shared_receipt_with_poi": 2188,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 126027,
        "expenses": 35818,
        "loan_advances": "NaN",
        "from_messages": 144,
        "other": 486,
        "from_this_person_to_poi": 25,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -262500,
        "long_term_incentive": 375304,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 199
    },
    "RICE KENNETH D": {
        "salary": 420636,
        "to_messages": 905,
        "deferral_payments": "NaN",
        "total_payments": 505050,
        "exercised_stock_options": 19794175,
        "bonus": 1750000,
        "restricted_stock": 2748364,
        "shared_receipt_with_poi": 864,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 22542539,
        "expenses": 46950,
        "loan_advances": "NaN",
        "from_messages": 18,
        "other": 174839,
        "from_this_person_to_poi": 4,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -3504386,
        "long_term_incentive": 1617011,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 42
    },
    "KAMINSKI WINCENTY J": {
        "salary": 275101,
        "to_messages": 4607,
        "deferral_payments": "NaN",
        "total_payments": 1086821,
        "exercised_stock_options": 850010,
        "bonus": 400000,
        "restricted_stock": 126027,
        "shared_receipt_with_poi": 583,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 976037,
        "expenses": 83585,
        "loan_advances": "NaN",
        "from_messages": 14368,
        "other": 4669,
        "from_this_person_to_poi": 171,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 323466,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 41
    },
    "LOCKHART EUGENE E": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "COX DAVID": {
        "salary": 314288,
        "to_messages": 102,
        "deferral_payments": "NaN",
        "total_payments": 1101393,
        "exercised_stock_options": 117551,
        "bonus": 800000,
        "restricted_stock": 378082,
        "shared_receipt_with_poi": 71,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 495633,
        "expenses": 27861,
        "loan_advances": "NaN",
        "from_messages": 33,
        "other": 494,
        "from_this_person_to_poi": 4,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -41250,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "OVERDYKE JR JERE C": {
        "salary": 94941,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 249787,
        "exercised_stock_options": 5266578,
        "bonus": "NaN",
        "restricted_stock": 2041016,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 7307594,
        "expenses": 18834,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 176,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 135836,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "PEREIRA PAULO V. FERRAZ": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 27942,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 27942,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 101250,
        "deferred_income": -101250,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "STABLER FRANK": {
        "salary": 239502,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 1112087,
        "exercised_stock_options": "NaN",
        "bonus": 500000,
        "restricted_stock": 511734,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 511734,
        "expenses": 16514,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 356071,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "SKILLING JEFFREY K": {
        "salary": 1111258,
        "to_messages": 3627,
        "deferral_payments": "NaN",
        "total_payments": 8682716,
        "exercised_stock_options": 19250000,
        "bonus": 5600000,
        "restricted_stock": 6843672,
        "shared_receipt_with_poi": 2042,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 26093672,
        "expenses": 29336,
        "loan_advances": "NaN",
        "from_messages": 108,
        "other": 22122,
        "from_this_person_to_poi": 30,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 1920000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 88
    },
    "BLAKE JR. NORMAN P": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 1279,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 1279,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 113784,
        "deferred_income": -113784,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "SHERRICK JEFFREY B": {
        "salary": "NaN",
        "to_messages": 613,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 1426469,
        "bonus": "NaN",
        "restricted_stock": 405999,
        "shared_receipt_with_poi": 583,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1832468,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 25,
        "other": "NaN",
        "from_this_person_to_poi": 18,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 39
    },
    "PRENTICE JAMES": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": 564348,
        "total_payments": 564348,
        "exercised_stock_options": 886231,
        "bonus": "NaN",
        "restricted_stock": 208809,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1095040,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "GRAY RODNEY": {
        "salary": 6615,
        "to_messages": "NaN",
        "deferral_payments": 93585,
        "total_payments": 1146658,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 680833,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 365625,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "PICKERING MARK R": {
        "salary": 655037,
        "to_messages": 898,
        "deferral_payments": "NaN",
        "total_payments": 1386690,
        "exercised_stock_options": 28798,
        "bonus": 300000,
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 728,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 28798,
        "expenses": 31653,
        "loan_advances": 400000,
        "from_messages": 67,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 7
    },
    "THE TRAVEL AGENCY IN THE PARK": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 362096,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 362096,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "NOLES JAMES L": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": 774401,
        "total_payments": 774401,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 463261,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -94556,
        "total_stock_value": 368705,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "KEAN STEVEN J": {
        "salary": 404338,
        "to_messages": 12754,
        "deferral_payments": "NaN",
        "total_payments": 1747522,
        "exercised_stock_options": 2022048,
        "bonus": 1000000,
        "restricted_stock": 4131594,
        "shared_receipt_with_poi": 3639,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 6153642,
        "expenses": 41953,
        "loan_advances": "NaN",
        "from_messages": 6759,
        "other": 1231,
        "from_this_person_to_poi": 387,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 300000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 140
    },
    "TOTAL": {
        "salary": 26704229,
        "to_messages": "NaN",
        "deferral_payments": 32083396,
        "total_payments": 309886585,
        "exercised_stock_options": 311764000,
        "bonus": 97343619,
        "restricted_stock": 130322299,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -7576788,
        "total_stock_value": 434509511,
        "expenses": 5235198,
        "loan_advances": 83925000,
        "from_messages": "NaN",
        "other": 42667589,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 1398517,
        "deferred_income": -27992891,
        "long_term_incentive": 48521928,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "FOWLER PEGGY": {
        "salary": "NaN",
        "to_messages": 517,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 1324578,
        "bonus": "NaN",
        "restricted_stock": 560170,
        "shared_receipt_with_poi": 10,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1884748,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 36,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "WASAFF GEORGE": {
        "salary": 259996,
        "to_messages": 400,
        "deferral_payments": 831299,
        "total_payments": 1034395,
        "exercised_stock_options": 1668260,
        "bonus": 325000,
        "restricted_stock": 388167,
        "shared_receipt_with_poi": 337,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2056427,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 30,
        "other": 1425,
        "from_this_person_to_poi": 7,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -583325,
        "long_term_incentive": 200000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 22
    },
    "WHITE JR THOMAS E": {
        "salary": 317543,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 1934359,
        "exercised_stock_options": 1297049,
        "bonus": 450000,
        "restricted_stock": 13847074,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 15144123,
        "expenses": 81353,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 1085463,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "CHRISTODOULOU DIOMEDES": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 5127155,
        "bonus": "NaN",
        "restricted_stock": 950730,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 6077885,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "ALLEN PHILLIP K": {
        "salary": 201955,
        "to_messages": 2902,
        "deferral_payments": 2869717,
        "total_payments": 4484442,
        "exercised_stock_options": 1729541,
        "bonus": 4175000,
        "restricted_stock": 126027,
        "shared_receipt_with_poi": 1407,
        "restricted_stock_deferred": -126027,
        "total_stock_value": 1729541,
        "expenses": 13868,
        "loan_advances": "NaN",
        "from_messages": 2195,
        "other": 152,
        "from_this_person_to_poi": 65,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -3081055,
        "long_term_incentive": 304805,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 47
    },
    "SHARP VICTORIA T": {
        "salary": 248146,
        "to_messages": 3136,
        "deferral_payments": 187469,
        "total_payments": 1576511,
        "exercised_stock_options": 281073,
        "bonus": 600000,
        "restricted_stock": 213063,
        "shared_receipt_with_poi": 2477,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 494136,
        "expenses": 116337,
        "loan_advances": "NaN",
        "from_messages": 136,
        "other": 2401,
        "from_this_person_to_poi": 6,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 422158,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 24
    },
    "JAEDICKE ROBERT": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 83750,
        "exercised_stock_options": 431750,
        "bonus": "NaN",
        "restricted_stock": 44093,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -44093,
        "total_stock_value": 431750,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 108750,
        "deferred_income": -25000,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "WINOKUR JR. HERBERT S": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 84992,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 1413,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 108579,
        "deferred_income": -25000,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "BROWN MICHAEL": {
        "salary": "NaN",
        "to_messages": 1486,
        "deferral_payments": "NaN",
        "total_payments": 49288,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 761,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 49288,
        "loan_advances": "NaN",
        "from_messages": 41,
        "other": "NaN",
        "from_this_person_to_poi": 1,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 13
    },
    "BADUM JAMES P": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": 178980,
        "total_payments": 182466,
        "exercised_stock_options": 257817,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 257817,
        "expenses": 3486,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "HUGHES JAMES A": {
        "salary": "NaN",
        "to_messages": 719,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": 754966,
        "bonus": "NaN",
        "restricted_stock": 363428,
        "shared_receipt_with_poi": 589,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1118394,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 34,
        "other": "NaN",
        "from_this_person_to_poi": 5,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 35
    },
    "REYNOLDS LAWRENCE": {
        "salary": 76399,
        "to_messages": "NaN",
        "deferral_payments": 51365,
        "total_payments": 394475,
        "exercised_stock_options": 4160672,
        "bonus": 100000,
        "restricted_stock": 201483,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -140264,
        "total_stock_value": 4221891,
        "expenses": 8409,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 202052,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -200000,
        "long_term_incentive": 156250,
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "DIMICHELE RICHARD G": {
        "salary": 262788,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 2368151,
        "exercised_stock_options": 8191755,
        "bonus": 1000000,
        "restricted_stock": 126027,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 8317782,
        "expenses": 35812,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 374689,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 694862,
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "BHATNAGAR SANJAY": {
        "salary": "NaN",
        "to_messages": 523,
        "deferral_payments": "NaN",
        "total_payments": 15456290,
        "exercised_stock_options": 2604490,
        "bonus": "NaN",
        "restricted_stock": -2604490,
        "shared_receipt_with_poi": 463,
        "restricted_stock_deferred": 15456290,
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 29,
        "other": 137864,
        "from_this_person_to_poi": 1,
        "poi": false,
        "director_fees": 137864,
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "CARTER REBECCA C": {
        "salary": 261809,
        "to_messages": 312,
        "deferral_payments": "NaN",
        "total_payments": 477557,
        "exercised_stock_options": "NaN",
        "bonus": 300000,
        "restricted_stock": 307301,
        "shared_receipt_with_poi": 196,
        "restricted_stock_deferred": -307301,
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 15,
        "other": 540,
        "from_this_person_to_poi": 7,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -159792,
        "long_term_incentive": 75000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 29
    },
    "BUCHANAN HAROLD G": {
        "salary": 248017,
        "to_messages": 1088,
        "deferral_payments": "NaN",
        "total_payments": 1054637,
        "exercised_stock_options": 825464,
        "bonus": 500000,
        "restricted_stock": 189041,
        "shared_receipt_with_poi": 23,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1014505,
        "expenses": 600,
        "loan_advances": "NaN",
        "from_messages": 125,
        "other": 1215,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 304805,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "YEAP SOON": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 55097,
        "exercised_stock_options": 192758,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 192758,
        "expenses": 55097,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "MURRAY JULIA H": {
        "salary": 229284,
        "to_messages": 2192,
        "deferral_payments": "NaN",
        "total_payments": 812194,
        "exercised_stock_options": 400478,
        "bonus": 400000,
        "restricted_stock": 196983,
        "shared_receipt_with_poi": 395,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 597461,
        "expenses": 57580,
        "loan_advances": "NaN",
        "from_messages": 45,
        "other": 330,
        "from_this_person_to_poi": 2,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 125000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 11
    },
    "GARLAND C KEVIN": {
        "salary": 231946,
        "to_messages": 209,
        "deferral_payments": "NaN",
        "total_payments": 1566469,
        "exercised_stock_options": 636246,
        "bonus": 850000,
        "restricted_stock": 259907,
        "shared_receipt_with_poi": 178,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 896153,
        "expenses": 48405,
        "loan_advances": "NaN",
        "from_messages": 44,
        "other": 60814,
        "from_this_person_to_poi": 27,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 375304,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 10
    },
    "DODSON KEITH": {
        "salary": 221003,
        "to_messages": 176,
        "deferral_payments": "NaN",
        "total_payments": 319941,
        "exercised_stock_options": "NaN",
        "bonus": 70000,
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 114,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": 28164,
        "loan_advances": "NaN",
        "from_messages": 14,
        "other": 774,
        "from_this_person_to_poi": 3,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 10
    },
    "YEAGER F SCOTT": {
        "salary": 158403,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 360300,
        "exercised_stock_options": 8308552,
        "bonus": "NaN",
        "restricted_stock": 3576206,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 11884758,
        "expenses": 53947,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 147950,
        "from_this_person_to_poi": "NaN",
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "HIRKO JOSEPH": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": 10259,
        "total_payments": 91093,
        "exercised_stock_options": 30766064,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 30766064,
        "expenses": 77978,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 2856,
        "from_this_person_to_poi": "NaN",
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "DIETRICH JANET R": {
        "salary": 250100,
        "to_messages": 2572,
        "deferral_payments": "NaN",
        "total_payments": 1410464,
        "exercised_stock_options": 1550019,
        "bonus": 600000,
        "restricted_stock": 315068,
        "shared_receipt_with_poi": 1902,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1865087,
        "expenses": 3475,
        "loan_advances": "NaN",
        "from_messages": 63,
        "other": 473,
        "from_this_person_to_poi": 14,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 556416,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 305
    },
    "DERRICK JR. JAMES V": {
        "salary": 492375,
        "to_messages": 2181,
        "deferral_payments": "NaN",
        "total_payments": 550981,
        "exercised_stock_options": 8831913,
        "bonus": 800000,
        "restricted_stock": 1787380,
        "shared_receipt_with_poi": 1401,
        "restricted_stock_deferred": -1787380,
        "total_stock_value": 8831913,
        "expenses": 51124,
        "loan_advances": "NaN",
        "from_messages": 909,
        "other": 7482,
        "from_this_person_to_poi": 20,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -1284000,
        "long_term_incentive": 484000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 64
    },
    "FREVERT MARK A": {
        "salary": 1060932,
        "to_messages": 3275,
        "deferral_payments": 6426990,
        "total_payments": 17252530,
        "exercised_stock_options": 10433518,
        "bonus": 2000000,
        "restricted_stock": 4188667,
        "shared_receipt_with_poi": 2979,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 14622185,
        "expenses": 86987,
        "loan_advances": 2000000,
        "from_messages": 21,
        "other": 7427621,
        "from_this_person_to_poi": 6,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -3367011,
        "long_term_incentive": 1617011,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 242
    },
    "PAI LOU L": {
        "salary": 261879,
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 3123383,
        "exercised_stock_options": 15364167,
        "bonus": 1000000,
        "restricted_stock": 8453763,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 23817930,
        "expenses": 32047,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 1829457,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "BAY FRANKLIN R": {
        "salary": 239671,
        "to_messages": "NaN",
        "deferral_payments": 260455,
        "total_payments": 827696,
        "exercised_stock_options": "NaN",
        "bonus": 400000,
        "restricted_stock": 145796,
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": -82782,
        "total_stock_value": 63014,
        "expenses": 129142,
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": 69,
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -201641,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": "NaN"
    },
    "HAYSLETT RODERICK J": {
        "salary": "NaN",
        "to_messages": 2649,
        "deferral_payments": "NaN",
        "total_payments": "NaN",
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": 346663,
        "shared_receipt_with_poi": 571,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 346663,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 1061,
        "other": "NaN",
        "from_this_person_to_poi": 38,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 35
    },
    "FUGH JOHN L": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": 50591,
        "total_payments": 50591,
        "exercised_stock_options": 176378,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 176378,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "FALLON JAMES B": {
        "salary": 304588,
        "to_messages": 1755,
        "deferral_payments": "NaN",
        "total_payments": 3676340,
        "exercised_stock_options": 940257,
        "bonus": 2500000,
        "restricted_stock": 1392142,
        "shared_receipt_with_poi": 1604,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2332399,
        "expenses": 95924,
        "loan_advances": "NaN",
        "from_messages": 75,
        "other": 401481,
        "from_this_person_to_poi": 37,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 374347,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 42
    },
    "KOENIG MARK E": {
        "salary": 309946,
        "to_messages": 2374,
        "deferral_payments": "NaN",
        "total_payments": 1587421,
        "exercised_stock_options": 671737,
        "bonus": 700000,
        "restricted_stock": 1248318,
        "shared_receipt_with_poi": 2271,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1920055,
        "expenses": 127017,
        "loan_advances": "NaN",
        "from_messages": 61,
        "other": 150458,
        "from_this_person_to_poi": 15,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 300000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 53
    },
    "SAVAGE FRANK": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 3750,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 125034,
        "deferred_income": -121284,
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "IZZO LAWRENCE L": {
        "salary": 85274,
        "to_messages": 496,
        "deferral_payments": "NaN",
        "total_payments": 1979596,
        "exercised_stock_options": 2165172,
        "bonus": "NaN",
        "restricted_stock": 3654808,
        "shared_receipt_with_poi": 437,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 5819980,
        "expenses": 28093,
        "loan_advances": "NaN",
        "from_messages": 19,
        "other": 1553729,
        "from_this_person_to_poi": 5,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 312500,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 28
    },
    "TILNEY ELIZABETH A": {
        "salary": 247338,
        "to_messages": 460,
        "deferral_payments": "NaN",
        "total_payments": 399393,
        "exercised_stock_options": 591250,
        "bonus": 300000,
        "restricted_stock": 576792,
        "shared_receipt_with_poi": 379,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1168042,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 19,
        "other": 152055,
        "from_this_person_to_poi": 11,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -575000,
        "long_term_incentive": 275000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 10
    },
    "MARTIN AMANDA K": {
        "salary": 349487,
        "to_messages": 1522,
        "deferral_payments": 85430,
        "total_payments": 8407016,
        "exercised_stock_options": 2070306,
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": 477,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2070306,
        "expenses": 8211,
        "loan_advances": "NaN",
        "from_messages": 230,
        "other": 2818454,
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 5145434,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 8
    },
    "BUY RICHARD B": {
        "salary": 330546,
        "to_messages": 3523,
        "deferral_payments": 649584,
        "total_payments": 2355702,
        "exercised_stock_options": 2542813,
        "bonus": 900000,
        "restricted_stock": 901657,
        "shared_receipt_with_poi": 2333,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 3444470,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 1053,
        "other": 400572,
        "from_this_person_to_poi": 71,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -694862,
        "long_term_incentive": 769862,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 156
    },
    "GRAMM WENDY L": {
        "salary": "NaN",
        "to_messages": "NaN",
        "deferral_payments": "NaN",
        "total_payments": 119292,
        "exercised_stock_options": "NaN",
        "bonus": "NaN",
        "restricted_stock": "NaN",
        "shared_receipt_with_poi": "NaN",
        "restricted_stock_deferred": "NaN",
        "total_stock_value": "NaN",
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": "NaN",
        "other": "NaN",
        "from_this_person_to_poi": "NaN",
        "poi": false,
        "director_fees": 119292,
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "NaN",
        "from_poi_to_this_person": "NaN"
    },
    "CAUSEY RICHARD A": {
        "salary": 415189,
        "to_messages": 1892,
        "deferral_payments": "NaN",
        "total_payments": 1868758,
        "exercised_stock_options": "NaN",
        "bonus": 1000000,
        "restricted_stock": 2502063,
        "shared_receipt_with_poi": 1585,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 2502063,
        "expenses": 30674,
        "loan_advances": "NaN",
        "from_messages": 49,
        "other": 307895,
        "from_this_person_to_poi": 12,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": -235000,
        "long_term_incentive": 350000,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 58
    },
    "TAYLOR MITCHELL S": {
        "salary": 265214,
        "to_messages": 533,
        "deferral_payments": 227449,
        "total_payments": 1092663,
        "exercised_stock_options": 3181250,
        "bonus": 600000,
        "restricted_stock": 563798,
        "shared_receipt_with_poi": 300,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 3745048,
        "expenses": "NaN",
        "loan_advances": "NaN",
        "from_messages": 29,
        "other": "NaN",
        "from_this_person_to_poi": 0,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 0
    },
    "DONAHUE JR JEFFREY M": {
        "salary": 278601,
        "to_messages": 865,
        "deferral_payments": "NaN",
        "total_payments": 875760,
        "exercised_stock_options": 765920,
        "bonus": 800000,
        "restricted_stock": 315068,
        "shared_receipt_with_poi": 772,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 1080988,
        "expenses": 96268,
        "loan_advances": "NaN",
        "from_messages": 22,
        "other": 891,
        "from_this_person_to_poi": 11,
        "poi": false,
        "director_fees": "NaN",
        "deferred_income": -300000,
        "long_term_incentive": "NaN",
        "email_address": "[email protected]",
        "from_poi_to_this_person": 188
    },
    "GLISAN JR BEN F": {
        "salary": 274975,
        "to_messages": 873,
        "deferral_payments": "NaN",
        "total_payments": 1272284,
        "exercised_stock_options": 384728,
        "bonus": 600000,
        "restricted_stock": 393818,
        "shared_receipt_with_poi": 874,
        "restricted_stock_deferred": "NaN",
        "total_stock_value": 778546,
        "expenses": 125978,
        "loan_advances": "NaN",
        "from_messages": 16,
        "other": 200308,
        "from_this_person_to_poi": 6,
        "poi": true,
        "director_fees": "NaN",
        "deferred_income": "NaN",
        "long_term_incentive": 71023,
        "email_address": "[email protected]",
        "from_poi_to_this_person": 52
    }
}

Error python startup.py link is broken

python startup.py

checking for nltk
you should install nltk before continuing
checking for numpy
you should install numpy before continuing
checking for scipy
you should install scipy before continuing
checking for sklearn
you should install sklearn before continuing

downloading the Enron dataset (this may take a while)
to check on progress, you can cd up one level, then execute <ls -lthr>
Enron dataset should be last item on the list, along with its current size
download will complete at about 423 MB
Traceback (most recent call last):
File "startup.py", line 35, in
urllib.urlretrieve(url, filename="../enron_mail_20150507.tgz")
File "/usr/lib64/python2.7/urllib.py", line 94, in urlretrieve
return _urlopener.retrieve(url, filename, reporthook, data)
File "/usr/lib64/python2.7/urllib.py", line 240, in retrieve
fp = self.open(url, data)
File "/usr/lib64/python2.7/urllib.py", line 208, in open
return getattr(self, name)(url)
File "/usr/lib64/python2.7/urllib.py", line 437, in open_https
h.endheaders(data)
File "/usr/lib64/python2.7/httplib.py", line 1013, in endheaders
self._send_output(message_body)
File "/usr/lib64/python2.7/httplib.py", line 864, in _send_output
self.send(msg)
File "/usr/lib64/python2.7/httplib.py", line 826, in send
self.connect()
File "/usr/lib64/python2.7/httplib.py", line 1227, in connect
HTTPConnection.connect(self)
File "/usr/lib64/python2.7/httplib.py", line 807, in connect
self.timeout, self.source_address)
File "/usr/lib64/python2.7/socket.py", line 553, in create_connection
for res in getaddrinfo(host, port, 0, SOCK_STREAM):
IOError: [Errno socket error] [Errno -2] Name or service not known

unnecessary code on line 48

Line 48: pred = clf.predict(features_test)
I believe the variable above hasn't been used by the file.
Some performance gain without it.

I faile to open "nb_author_id" python scripts.

Hi,When I open the "nb_author_id" python scripts in Naive Bayes folder, a list of words show: E:\python27\lib\site-packages\sklearn\cross_calidation.py:44: DeprecationWarning: This module was deprecated in version 0.18 in favor of the module_selection module into which all the refactored classes and functions are moved. Also note that the interface of the new CV iterators are different from that of this module. This module will be removed in 0.20.
" This module will be removed in 0.20.", DeprecationWarning>

Hi ,my teacher ,could you help me? Thanks for helping.

UD120 references to UD421

I noticed in the headline that the repository reference UD421, reads:

Starter project code for students taking Udacity ud421

(See attached screenshot to see what I saw)
screenshot 2015-09-30 16 19 35

I believe UD421 is the "iOS Networking with Swift" course, not the "Intro to Machine Learning" course that this is meant to be. It was a little confusing at first, but it's a really simple fix, if you have the right rights.

If someone who has admin rights to this repo were to just go to https://github.com/udacity/ud120-projects then there should be an "edit" button to the immediate right of the text: "Starter project code for students taking Udacity ud421" and you can just change the numbers 421 to 120 and be done! That should result in a little less confusion here.

Thanks so much for making this repository available!

no such file

Hi, I am currently taking the Intro to ML course and it turns out many files are missing....For example, one file needed gives this error:
word_data = pickle.load( open(words_file, "r"))

FileNotFoundError: [Errno 2] No such file or directory: '../text_learning/word_data.pkl'
It seems not all necessary files for completing the quizzes are uploaded here on GitHub....
And this is just one example file that is missing...
Please update your documentation if you want people to take the course.
Thank you.

No module named email_preprocess

Traceback (most recent call last):
  File "naive_bayes/nb_author_id.py", line 17, in <module>
    from email_preprocess import preprocess
ImportError: No module named email_preprocess

ReadError: Empty file

Running the startup file gives the following empty file error when it tries to download the tar file containing the dataset.

python2 startup.py 

checking for nltk
checking for numpy
you should install numpy before continuing
checking for scipy
you should install scipy before continuing
checking for sklearn
you should install sklearn before continuing

downloading the Enron dataset (this may take a while)
to check on progress, you can cd up one level, then execute <ls -lthr>
Enron dataset should be last item on the list, along with its current size
download will complete at about 423 MB
   download complete!

unzipping Enron dataset (this may take a while)
Traceback (most recent call last):
 File "startup.py", line 44, in <module>
   tfile = tarfile.open("enron_mail_20150507.tar.gz", "r:gz")
 File "/usr/lib64/python2.7/tarfile.py", line 1691, in open
   return func(name, filemode, fileobj, **kwargs)
 File "/usr/lib64/python2.7/tarfile.py", line 1745, in gzopen
   t = cls.taropen(name, mode, fileobj, **kwargs)
 File "/usr/lib64/python2.7/tarfile.py", line 1721, in taropen
   return cls(name, mode, fileobj, **kwargs)
 File "/usr/lib64/python2.7/tarfile.py", line 1587, in __init__
   self.firstmember = self.next()
 File "/usr/lib64/python2.7/tarfile.py", line 2371, in next
   raise ReadError("empty file")
tarfile.ReadError: empty file

clean away "signature words"

Traceback (most recent call last):
File "C:\Users\user\Downloads\ud120-projects-master\text_learning\vectorize_text.py", line 48, in
email = open(path, "r")
IOError: [Errno 2] No such file or directory: '..\maildir/bailey-s/deleted_items/101.'

i am gettin this error though the maildir is downloaded and unzipped properly.. somebody help

Was the email content generated or not?

Hi,
I have been following the course and I really love it. I was intrigued to look into the original "email content" to see how it was prepossessed. The data really looks legit and even if it has been stemmed you can clearly collect id/pw and email address. Therefore, I was wondering if you actually generated it or if it is actually legit information. If it is legit, I'd advise trying to remove these information as people (sadly) don't often change their username/password.
Best,

Python 3 - Ordered Dictionary

I've ported this repo over to python 3 but facing an issue for the mini project of lesson 6.
It seems that when I'm importing the data it comes in an arbitrary order, what means I can't compute the wanted values in the quizzes.

Is there something I can do about it?

Plotting wrong in choose_you_own_class

Last night I noticed that if I changed line 9 of ud120-projects\choose_your_own\prep_terrain_data.py from:

grade = [random.random() for ii in range(0,n_points)]

to

grade = [random.random()/2.0 for ii in range(0,n_points)]

very weird things happen.

I traced this down to the plotting of the initial classifications - the x and y were wrong. Confusion was compounded by the labels being wrong on the results plot.

I have changed to make gradient always the x axis and bumpiness always the y axis.

Let me know if you agree.

Feature_format

There is no such module when I try to run this code. What can I do?

database download error fix by your hand

in file ./tools/startup.py
at line 34,line 35,line 44
change stream "enron_mail_20150507.tgz" to "enron_mail_20150507.tar.gz"
save and run the startup.py
now,it's work!
my name is leifeng~


issues' reason:guys of enron_mails have changed their compress file format( also the download URL),but udacity have not refresh and change their code.

where are the emails?

I don't get it, shouldn't there be folders with emails in this repository?
when I run the vectorize_text.py file I get this error:
[Errno 2] No such file or directory: '../maildir/bailey-s/deleted_items/101.'
I check the directory one level up and there is no maildir.

Is there something I missed?

Couldn't install SciPy

I have tried running the code it gives my this error

Traceback (most recent call last):
File "C:\Users\DeLL\Desktop\ud120-projects\naive_bayes\nb_author_id.py", line 16, in
from email_preprocess import preprocess
File "../tools/email_preprocess.py", line 7, in
from sklearn import cross_validation
File "C:\Python27\lib\site-packages\sklearn_init_.py", line 57, in
from .base import clone
File "C:\Python27\lib\site-packages\sklearn\base.py", line 10, in
from scipy import sparse
ImportError: No module named scipy

and then I use pip install scipy it gives following error

Command "c:\python27\python.exe -u -c "import setuptools, tokenize;file='c:\users\dell\appdata\local\temp\pip-build-bbcarc\scipy\setup.py';f=getattr(tokenize, 'open', open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" install --record c:\users\dell\appdata\local\temp\pip-empnns-record\install-record.txt --single-version-externally-managed --compile" failed with error code 1 in c:\users\dell\appdata\local\temp\pip-build-bbcarc\scipy\

I have searched a little bit and found out that it has to do something with .whl. I am not expert at computer. Please help me out

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.